note:  the PRINT statement code generator has been purposly 'bloated' for this demo.  Future versions will have very concise code generated for PRINT statements.

email me at treehouse2000us@yahoo.com for feedback, bugs or ask about updates.
Also in the works are MUSIC MASTER WORLD, DOGFIGHTERS OF MARS II and HACKI-SAKI's PLAYHOUSE!

-------------------------------------------------------------------

iDIOT aSSEMBLER VERSION 2.00  (EARLIEST BETA....)
	(C)2016 NASPITE LABS

The goal of Idiot Assembler v2.00 is to make assembly programs with just
Applesoft basic commands.  Not only that, the programs are totally relocatable, 
so dont worry about jump points or memory specifics, just type your code in,
then bload it, and CALL its location.  Thats simple as that!


***   ATTENTION...  **** the code you generate will not correctly BRUN, 
you must BLOAD the code then call it from its loaded location, or it may 
not 'end' the program cleanly.   HOWEVER... if you JSR the program from an 
assembly routine that will work fine, as long as (END) is the last statement 
in the creation code.  *****


**** ATTENTION 2 ************

Typing in BASIC commands is not the same as APPLESOFT basic (YET).   One must
type in the COMMAND statement, then wait for prompts (if available)... this
will be remedied in future versions of Idiot Assembler 2.00

Examples:
	1	PRINT
	2	    : TYPE TEXT HERE

	1	COLOR
	2	   (0-15): ENTER COLOR # HERE

	1	VLIN	
	2	  X:(0-39):  	ENTER X
	3	  Y1:(0-39):	ENTER Y1
	4	  Y2:(0-39):	ENTER Y2
	

	




This manual is VERY BASIC, dont expect much support from this beta version...

1.  create code
2.  use (END) as your last statement.
3.  type SAVE and enter your file name.
4.  BLOAD the object code (default is 30000) but can be loaded anywhere.
5.  CALL XXXXX (mem location) from applesoft prompt, your applesoft program,
	or JSR XXXXX it from assembly.


CODES IMPLIMENTED.....

PLOT
HLIN
COLOR
GR
VLIN
END
VTAB
HTAB
INVERSE
FLASH
NORMAL
SPEED
TEXT
STOP
CATALOG
REBOOT
WAIT KEY	- WAITS FOR USER KEY TO CONTINUE (MAY SEE A BLOCK ON THE SCREEN)
WAIT RETURN	- WAITS FOR USER "RETURN" TO CONTINUE (MAY SEE A BLOCK ON THE SCREEN)

** SAVE - SAVES YOUR FILE
** LIST - PRINTS YOUR CODE TO 'PR#1'SLOT PRINTER (GOOD FOR APPLEWIN!)


*** OTHER NOTE.... if you use HOME durring GR drawing it will 'destroy' your lo-res graphic
screen and return to a blank text screen.  Consider it a beta bug! ****

Please use the EMAIL above for feedback, and or bugs!

